EmailRegister.tsx ➔ EmailRegister   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 7
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 7
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
import React from 'react';
2
import { useState, useEffect } from 'react';
3
import { ScrollView, Image, Text, View, StyleSheet, StatusBar, Dimensions, Pressable } from 'react-native';
4
import {SafeAreaView} from 'react-native-safe-area-context';
5
import EmailForm from './EmailForm';
6
7
export default function EmailRegister({setToken, navigation, setIsLoggedIn}): any {
8
9
    return (
10
        <SafeAreaView>
11
            <EmailForm navigation={navigation} setToken={setToken} setIsLoggedIn={setIsLoggedIn}></EmailForm>
12
        </SafeAreaView>
13
    )
14
};